But I gotta have it
Watch out for the damage
(Vanessa Paradis, "Gotta Have It")
AND
'' - boolean AND
OR
'' - boolean OR
XOR
'' - exclusive OR
<
'', ``>
'', ``<=
'', ``>=
'', ``<>
''
- case insensitive string comparison
+
'' - addition. As ``+
'' is also used for string concatenation, you will have
to make sure that the type of target attribute is NUM
.
-
'' - subtraction. As ``-
'' is also a legal character in attribute names,
you must enclose it into two white spaces, so that it will not be interpreted as part
of the next or previous word.
*
'' - multiplication
/
'' - division
MOD
'' - modulo
0
'', any text not
consisting only of digits counts as ``1
'' (no warnings). This
seems to make sense for auto-casting BOOL
(not sure about
that).
<$export>
- Export Data To FilesOn startup, hsc will look for an options file, which will be parsed for command line options before the actual command line options passed from CLI. Values set in the options file can be overwritten by command line options later.
The format of the options file is easy as can be: it consists of several lines, with every line containing one single options, and, if necessary, also a ``=
'' and a value. An example options
file could look like this:
FROM=include/stdmacros.hsc TO=www:sepp/ COMPACT IGNORE=notes|styleThe options file always has to be named hsc.options.